All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.apple.alpha.core.MutableSet

java.lang.Object
   |
   +----com.apple.alpha.core.NativeObject
           |
           +----com.apple.alpha.core.Set
                   |
                   +----com.apple.alpha.core.MutableSet

public class MutableSet
extends Set
This class wraps the Objective-C class NSMutableSet.


Constructor Index

 o MutableSet()
This default constructor is equivalent to Objective-C's [[NSMutableSet alloc] init].
 o MutableSet(boolean, int)
Protected constructor used by the bridge to wrap an Objective-C object.
 o MutableSet(Enumeration)

Method Index

 o addObject(Object)
A wrapper for the - addObject: Objective-C instance method.
 o addObjectsFromArray(Array)
A wrapper for the - addObjectsFromArray: Objective-C instance method.
 o intersectSet(Set)
A wrapper for the - intersectSet: Objective-C instance method.
 o minusSet(Set)
A wrapper for the - minusSet: Objective-C instance method.
 o removeAllObjects()
A wrapper for the - removeAllObjects Objective-C instance method.
 o removeObject(Object)
A wrapper for the - removeObject: Objective-C instance method.
 o setSet(Set)
A wrapper for the - setSet: Objective-C instance method.
 o setWithCapacity(int)
A wrapper for the + setWithCapacity: Objective-C class method.
 o unionSet(Set)
A wrapper for the - unionSet: Objective-C instance method.

Constructors

 o MutableSet
 public MutableSet(Enumeration e)
 o MutableSet
 protected MutableSet(boolean shouldAllocate,
                      int objcObject)
Protected constructor used by the bridge to wrap an Objective-C object. It should never be invoked directly.

 o MutableSet
 public MutableSet()
This default constructor is equivalent to Objective-C's [[NSMutableSet alloc] init].

Methods

 o addObject
 public native void addObject(Object object)
A wrapper for the - addObject: Objective-C instance method.

 o removeObject
 public native void removeObject(Object object)
A wrapper for the - removeObject: Objective-C instance method.

 o addObjectsFromArray
 public native void addObjectsFromArray(Array array)
A wrapper for the - addObjectsFromArray: Objective-C instance method.

 o intersectSet
 public native void intersectSet(Set otherSet)
A wrapper for the - intersectSet: Objective-C instance method.

 o minusSet
 public native void minusSet(Set otherSet)
A wrapper for the - minusSet: Objective-C instance method.

 o removeAllObjects
 public native void removeAllObjects()
A wrapper for the - removeAllObjects Objective-C instance method.

 o unionSet
 public native void unionSet(Set otherSet)
A wrapper for the - unionSet: Objective-C instance method.

 o setSet
 public native void setSet(Set otherSet)
A wrapper for the - setSet: Objective-C instance method.

 o setWithCapacity
 public static native Object setWithCapacity(int numItems)
A wrapper for the + setWithCapacity: Objective-C class method.


All Packages  Class Hierarchy  This Package  Previous  Next  Index